From 5f5202f471536a511cacbac62c50dfbc5d4eea99 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Tue, 2 Aug 2005 11:08:47 +0000 Subject: [PATCH] Missing ia64_stubs file for libxc. --- tools/libxc/xc_ia64_stubs.c | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 tools/libxc/xc_ia64_stubs.c diff --git a/tools/libxc/xc_ia64_stubs.c b/tools/libxc/xc_ia64_stubs.c new file mode 100644 index 0000000000..0bf20ab525 --- /dev/null +++ b/tools/libxc/xc_ia64_stubs.c @@ -0,0 +1,39 @@ +#include "xc_private.h" + +int xc_linux_save(int xc_handle, int io_fd, u32 dom) +{ + PERROR("xc_linux_save not implemented\n"); + return -1; +} + +int xc_linux_restore(int xc_handle, int io_fd, u32 dom, unsigned long nr_pfns) +{ + PERROR("xc_linux_restore not implemented\n"); + return -1; +} + +int xc_vmx_build(int xc_handle, + u32 domid, + int memsize, + const char *image_name, + struct mem_map *mem_mapp, + const char *ramdisk_name, + const char *cmdline, + unsigned int control_evtchn, + unsigned long flags) +{ + PERROR("xc_vmx_build not implemented\n"); + return -1; +} + +int +xc_plan9_build(int xc_handle, + u32 domid, + const char *image_name, + const char *cmdline, + unsigned int control_evtchn, unsigned long flags) +{ + PERROR("xc_plan9_build not implemented\n"); + return -1; +} + -- 2.30.2